TimeInterval struct¶
Defined in
Namespace: System.Reactive
Assembly: System.Reactive.dll
Full name: System.Reactive.TimeInterval<T>
Modifiers: public sealed
Summary¶
Represents a value associated with time interval information.
The time interval can represent the time it took to produce the value, the interval relative to a previous value, the value's delivery time relative to a base, etc.
Applies to
netstandard2.0
Class hierarchy
classDiagram
class TimeInterval~T~
class IEquatable~TimeInterval~T~~ {
<>
}
IEquatable~TimeInterval~T~~ <|.. TimeInterval~T~
Implements: IEquatable
Constructors¶
| Name | Summary |
|---|---|
| .ctor | Constructs a time interval value. |
Properties¶
| Name | Summary |
|---|---|
| Value | Gets the value. |
| Interval | Gets the interval. |
Methods¶
| Name | Summary |
|---|---|
| Deconstruct | Deconstructs the time interval value into a value and a time interval. |
| Equals | Determines whether the current [TimeInterval](# value has the same [Value](# and... |
| GetHashCode | Returns the hash code for the current [TimeInterval](# value. |
| ToString | Returns a string representation of the current [TimeInterval](# value. |
Operators¶
| Name | Summary |
|---|---|
| static op_Equality | Determines whether the two specified [TimeInterval](# values have the same [Value](# and... |
| static op_Inequality | Determines whether the two specified [TimeInterval](# values don't have the same [Value](# and... |